.transaction-card {
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.transaction-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.user-info {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.user-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.user-link:hover {
    color: #0056b3;
}

.amount {
    font-size: 16px;
    color: #28a745;
    font-weight: 600;
    background-color: #e8f5e9;
    padding: 4px 8px;
    border-radius: 6px;
}

.transaction-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.receiver-info {
    font-size: 14px;
    color: #666;
}

.receiver-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.receiver-link:hover {
    color: #0056b3;
}

.commission {
    font-size: 14px;
    color: #ff5722;
    font-weight: 600;
    background-color: #ffebee;
    padding: 4px 8px;
    border-radius: 6px;
}